4cbebabdb84283f158aea35ca2e10d4c45dc1a1b,community/kernel/src/main/java/org/neo4j/kernel/impl/api/state/ConstraintIndexCreator.java,ConstraintIndexCreator,awaitIndexPopulation,#PropertyConstraint#number#,114
Before Change
Throwable cause = e.getCause();
if ( cause instanceof IndexEntryConflictException )
{
Evidence evidence = Evidence.of( (IndexEntryConflictException) cause );
throw new ConstraintVerificationFailedKernelException( constraint, evidence );
}
else
After Change
if ( cause instanceof IndexEntryConflictException )
{
throw new UniquenessConstraintVerificationFailedKernelException( constraint,
singleton( (IndexEntryConflictException) cause ) );
}
else
{